home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Apple II / Essentials / Essentials.sea / File.Type.Notes / FTN.5A.8031 < prev    next >
Encoding:
Text File  |  1993-06-15  |  3.6 KB  |  85 lines  |  [TEXT/GEOL]

  1. Apple II
  2. File Type Notes
  3. _____________________________________________________________________________
  4.                                                   Developer Technical Support
  5.  
  6. File Type:       $5A (90)
  7. Auxiliary Type:  $8031
  8.  
  9. Full Name:       Replicator preferences
  10. Short Name:      Replicator preferences
  11.  
  12. Written by:      Josef W. Wankerl & Matt Deatherage                  May 1992
  13.  
  14. Files of this type and auxiliary type contain preferences for the disk
  15. duplicating application Replicator.
  16. _____________________________________________________________________________
  17.  
  18.  
  19. Replicator is a commerical, desktop-based disk duplicating application
  20. available from GS+ Magazine.
  21.  
  22. For more information on Replicator or GS+ Magazine, contact:
  23.  
  24.                    GS+ Magazine
  25.                    P.O. Box 15366
  26.                    Chattanooga, TN  37415-0366
  27.                    Attention:  Replicator Technical Support
  28.                    (615) 843-3988
  29.  
  30.                    America   Online: GSPlusDiz
  31.                    Delphi:   GSPlusDiz
  32.                    GEnie:    JWANKERL
  33.                    Internet: jwankerl@pro-gonzo.cts.com
  34.  
  35.  
  36. FILE FORMAT
  37.  
  38. A Replicator preferences file is an extended file with an empty data fork.
  39. Through version 1.1, Replicator looks for a file named "ReplicatorPrefs" in
  40. the "@" directory and gets preferences from that file if it exists.  The
  41. resource fork should contain eight resources of type $0001, with resource IDs
  42. $00000001 through $00000008.
  43.  
  44. Resource IDs $00000001 through $00000005 are WORD values which correspond to
  45. checkboxes in Replicator's preferences dialog.  If the word is zero, the
  46. checkbox is unchecked, while non-zero values indicate the checkbox is checked.
  47.  
  48. Resource IDs $00000006 through $00000008 are WORD values which correspond to
  49. numeric values in Line Edit controls in Replicator's preferences dialog.
  50. The exact correspondence for these eight values is shown in Table 1.
  51.  
  52.             ID          Preference
  53.             -------------------------------------------------
  54.             $00000001   Duplicate on exact size devices only
  55.             $00000002   Format media only when necessary
  56.             $00000003   Prompt on formatted target disks
  57.             $00000004   Blank screen on formats and writes
  58.             $00000005   Clear errors after disk inserts
  59.  
  60.             $00000006   Verify disk blocks every nth disk
  61.             $00000007   Validate disk files every nth disk
  62.             $00000008   Compare disk images every nth disk
  63.             -------------------------------------------------
  64.                    Table 1--ID to Preference Mapping
  65.  
  66. As an example, a Replicator preferences file that has "Duplicate on exact size
  67. devices only" turned off, "Format media only when necessary" turned on,
  68. "Prompt on formatted target disks" turned on, "Blank screen on formats and
  69. writes" turned off, "Clear errors after disk inserts" turned on, "Verify disk
  70. blocks every 10 disks," "Validate disk files every zero disks" and "Compare
  71. disk images every 1 disks" would contain the resources listed in Table 2.
  72.  
  73.             Resource Type    Resource ID      Contents
  74.             ------------------------------------------
  75.             $0001            $00000001        $0000
  76.             $0001            $00000002        $0001
  77.             $0001            $00000003        $0001
  78.             $0001            $00000004        $0000
  79.             $0001            $00000005        $0001
  80.             $0001            $00000006        $000A
  81.             $0001            $00000007        $0000
  82.             $0001            $00000008        $0001
  83.             ------------------------------------------
  84.             Table 2--Replicator Example Resource List
  85.